home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / libast-config < prev    next >
Text File  |  2005-10-18  |  1KB  |  48 lines

  1. #!/bin/sh
  2. #
  3. # libast-config -- libast configuration helper script
  4. #
  5. # 29 October 2000
  6. # Michael Jennings <mej@eterm.org>
  7. #
  8. # See libast source/documentation for license
  9. #
  10.  
  11. prefix=/usr
  12. exec_prefix=${prefix}
  13. CPPFLAGS="-I/usr/include "
  14. LDFLAGS="-L/usr/lib "
  15. LIBS="-L/usr/lib -lImlib2 -lfreetype -lz -lX11 -lXext -ldl -lm  -lSM -lICE  "
  16. X11_SUPPORT=X11
  17. IMLIB2_SUPPORT=
  18. MMX_SUPPORT=MMX
  19. REGEXP_SUPPORT=regexp-posix
  20. VERSION=0.6.1
  21.  
  22. case $1 in
  23.   -h | --help | -help)
  24.     echo "Usage:  libast-config [--version] [--prefix] [--exec-prefix] [--cppflags] [--ldflags] [--libs] [--support]"
  25.     ;;
  26.   -v | --version | -version)
  27.     echo "Libary of Assorted Spiffy Things:  libast $VERSION"
  28.     ;;
  29.   -p | --prefix | -prefix)
  30.     echo "$prefix"
  31.     ;;
  32.   -e | --exec-prefix | -exec-prefix)
  33.     echo "$exec_prefix"
  34.     ;;
  35.   -c | --cppflags | -cppflags | --cflags | -cflags)
  36.     echo "$CPPFLAGS"
  37.     ;;
  38.   -l | --ldflags | -ldflags)
  39.     echo "$LDFLAGS"
  40.     ;;
  41.   -L | --libs | -libs)
  42.     echo "$LIBS"
  43.     ;;
  44.   -s | --support | -support)
  45.     echo "$MMX_SUPPORT $X11_SUPPORT $IMLIB2_SUPPORT"
  46.     ;;
  47. esac
  48.